home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / etc / ttyslot.c < prev    next >
Text File  |  1989-07-21  |  1KB  |  45 lines

  1. /* 
  2.  * ttyslot.c --
  3.  *
  4.  *    Source code for the ttyslot library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: ttyslot.c,v 1.1 88/07/14 14:08:03 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. /*
  21.  *----------------------------------------------------------------------
  22.  *
  23.  * ttyslot --
  24.  *
  25.  *    This is a Sprite replacement for the UNIX ttyslot library
  26.  *    procedure, which supposedly returns the number of the entry
  27.  *    the ttys file that corresponds to the process' control
  28.  *    terminal.  Sprite doesn't really have the notion of a control
  29.  *    terminal, so this procedure pretends it couldn't find an entry.
  30.  *
  31.  * Results:
  32.  *    0, as if there was no corresponding slot in the ttys file.
  33.  *
  34.  * Side effects:
  35.  *    None.
  36.  *
  37.  *----------------------------------------------------------------------
  38.  */
  39.  
  40. int
  41. ttyslot()
  42. {
  43.     return 0;        /* Pretend we couldn't find it. */
  44. }
  45.